home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-07-08 | 383 b | 22 lines | [TEXT/ToyS] |
- --
- -- Let the user pick a file to read
- --
- set newFile to choose file with prompt "Pick a file to read:" of type {"TEXT"}
-
-
- --
- -- Open the file and read through it
- --
- set refNum to open file newFile for reading
- try
- repeat
- set input to read file refNum
- display dialog input buttons {"OK"} default button "OK"
- end repeat
- on error
- --
- -- Assume EOF
- --
- close file refNum
- end try
-